feat: add developer onboarding script for local development setup (closes #85) - #123
Merged
JamesEjembi merged 2 commits intoJul 30, 2026
Conversation
…oses VeriNode-Labs#85) Add scripts/dev-setup.sh that automates the VeriNode Core development environment bootstrap: - Checks/installs Rust toolchain, WASM target, LLVM tools, cargo-llvm-cov - Optional Soroban CLI verification - Builds project, runs test suite, checks code coverage - Sets up pre-commit hooks - Supports --check (dry-run) and --quick (skip slow steps) modes - Colour-coded output with clear pass/fail indicators
Both src/config_audit.rs and src/replication/mod.rs already existed but were never declarated as pub mod in lib.rs, causing unresolved import errors in tests/config_audit_test.rs and tests/replication_dr_test.rs.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds
scripts/dev-setup.sh, an automated developer onboarding script that bootstraps the VeriNode Core development environment.Changes
scripts/dev-setup.sh(294 lines)--check(dry-run),--quick(skip slow steps), and--fullmodesTesting
Closes #85